/******************************************************************************* * Copyright (c) 2009 Remy Chi Jian Suen and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Remy Chi Jian Suen <remy.suen@gmail.com> - initial API and implementation * IBM - ongoing development ******************************************************************************/ package org.eclipse.ui.tests.fieldassist; import org.eclipse.jface.tests.fieldassist.AbstractFieldAssistWindow; import org.eclipse.swt.widgets.Combo; public class ComboContentAssistCommandAdapterTest extends AbstractContentAssistCommandAdapterTest { @Override protected AbstractFieldAssistWindow createFieldAssistWindow() { return new ComboCommandFieldAssistWindow(); } private Combo getCombo() { return (Combo)getFieldAssistWindow().getFieldAssistControl(); } public void testBug243612() throws Exception { getFieldAssistWindow().open(); sendFocusInToControl(); executeContentAssistHandler(); assertTwoShellsUp(); assertFalse(getCombo().getListVisible()); } }